home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / mus / play / splibusr.lha / superplay-lib_USR / Install_SPLib < prev    next >
Text File  |  1997-04-03  |  1KB  |  52 lines

  1. ; $VER: Install_SPLib V6.1 (22.1.97)
  2. ; © 1994-97 by Andreas R. Kleinert.
  3. ; This is the Installer Script for superplay.library V6+
  4.  
  5.  
  6. (set #cpu (database "cpu"))
  7. (set @app-name "SuperPlay-Library")
  8.  
  9. (makedir "ENV:SuperPlay-Library")
  10. (makedir "ENVARC:SuperPlay-Library")
  11.  
  12. (copylib
  13.   (prompt "Installing superplay.library to LIBS: ...")
  14.   (help @copylib-help)
  15.   (source "libs/superplay.library")
  16.   (set #splibdest
  17.               (askdir
  18.                      (prompt "Library Path")
  19.                      (help @askdir-help)
  20.                      (newpath)
  21.                      (default "LIBS:")
  22.               )
  23.   )
  24.   (dest #splibdest)
  25. )
  26.  
  27. (set #spobjdest   (tackon #splibdest "spobjects"))
  28. (makedir #spobjdest)
  29.  
  30. (copyfiles
  31.   (prompt "Installing spobjects to LIBS:spobjects ...")
  32.   (help @copyfiles-help)
  33.   (source "libs/spobjects")
  34.   (dest (tackon #splibdest "spobjects"))
  35.   (pattern "#?")
  36.   (confirm)
  37.   (files)
  38. )
  39.  
  40. (if (>= #cpu 68020)
  41.   (
  42.     (copyfiles
  43.       (prompt "Installing special 68020+ versions of some spobjects");
  44.       (help @copyfiles-help)
  45.       (source "libs/68030")
  46.       (dest #splibdest)
  47.       (confirm)
  48.       (all)
  49.     )
  50.   )
  51. )
  52.